home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / editor / snmp_0_1.zip / snmp-0.1 / aka / snmp / SnmpMibException.java < prev    next >
Text File  |  1997-06-09  |  811b  |  31 lines

  1. /*
  2. Snmp Library
  3. Copyright (C) 1997 Alex Kowalenko Associates Pty Ltd. All rights reserved.
  4.  
  5. This software maybe be free distributed, any any form, without fee, 
  6. but may not be modified in any way without express permission of 
  7. the directors of Alex Kowalenko Associates Pty Ltd. 
  8.  
  9. Alex Kowalenko Associates Pty Ltd makes no representations or
  10. warranties about the suitabililty of the software, not even the
  11. implied warranty of merchantability or fitness for any particular
  12. purpose.    
  13. */
  14.  
  15. package aka.snmp;
  16.  
  17. /**
  18.  * Exception for errors in Mib Definition files.
  19.  * @see 
  20.  * @version     $Id: SnmpMibException.java,v 1.2 1997/05/12 12:17:47 alex Exp $
  21.  * @author      Alex Kowalenko
  22.  */
  23.  
  24. public class SnmpMibException extends SnmpException {
  25.   
  26.     SnmpMibException(String message) {
  27.     super(message);
  28.     };
  29. };
  30.  
  31.